home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000357_news@columbia.edu _Sun Dec 22 04:06:04 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id EAA11042 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 22 Dec 1996 04:06:04 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id EAA27412 for kermit.misc@watsun; Sun, 22 Dec 1996 04:06:03 -0500 (EST)
  4. Path: news.columbia.edu!psinntp!psinntp!usenet2.news.uk.psi.net!uknet!usenet1.news.uk.psi.net!uknet!uknet!strath-cs!judge.ulst.ac.uk!keele!daresbury!lyra.csx.cam.ac.uk!warwick!usenet.eel.ufl.edu!www.nntp.primenet.com!nntp.primenet.com!howland.erols.net!news.bbnplanet.com!cam-news-hub1.bbnplanet.com!panix!news.panix.com!usenet
  5. From: Kurt Rosenhagen <kjr@panix.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: dialing macro for dialback modem
  8. Date: Tue, 10 Dec 1996 10:58:13 -0500
  9. Organization: Extratek Inc.
  10. Lines: 63
  11. Message-ID: <32AD8895.41C67EA6@panix.com>
  12. References: <32A88B82.41C67EA6@panix.com> <58heqt$kcd@watsun.cc.columbia.edu> <32AC968D.41C67EA6@panix.com> <58i5kp$2em$1@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: kjr.dialup.access.net
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=us-ascii
  16. Content-Transfer-Encoding: 7bit
  17. X-Mailer: Mozilla 3.01Gold (X11; I; SunOS 4.1.3_U1 sun4m)
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6316
  19.  
  20. I'm running C-Kermit 5A(190). I'll try 6.0. Thanks for the help.
  21.  
  22. Kurt
  23.  
  24. Frank da Cruz wrote:
  25. > In article <32AC968D.41C67EA6@panix.com>,
  26. > Kurt Rosenhagen  <kjr@panix.com> wrote:
  27. > : Frank da Cruz wrote:
  28. > : > In article <32A88B82.41C67EA6@panix.com>,
  29. > : > Kurt Rosenhagen  <kjr@panix.com> wrote:
  30. > : > : Ive modified an existing macro for dialing in to a dialback modem. When
  31. > : > : the dialback occurs, an "INPUT" command is executed, and the message
  32. > : > : "Cant condition line for input" appears five times (there are siz input
  33. > : > : commands after dialback). The message "Connecting to cua0" etc apperas,
  34. > : > : script file is finished as kermit now expects input from keyboaard.
  35. > : > :
  36. > : > So this means you are probably using C-Kermit?  Which version?
  37. > : > On which platform?
  38. > : >
  39. > : > Anyway, the trick of handling dialback situations is that you
  40. > : > have to hang up the modem after making the call, so it can call
  41. > : > you back.  If you don't hang it up, it will just get a busy
  42. > : > signal.
  43. > :
  44. > : Sorry, I should have been more complete. I'm running C-Kermit ...
  45. > :
  46. > What version of C-Kermit?
  47. > : ... on a Sparc
  48. > : 10/50 under SunOS 4.1.3. While the dialback is not getting a busy
  49. > : signal, I think the problem is similiar; the answering modem isn't
  50. > : answering until the "INPUT" command times out. I've currently got it
  51. > : kind of working by doing one macro for dialout, then "HANGUP", then
  52. > : another macro for dialback answer (which can't be executed until the
  53. > : modems have finished negotiating). Can this somehow be automated into
  54. > : one macro?
  55. > :
  56. > I'm sure it can be, but I don't have access to your setup to try it.
  57. > I think the problem you had before was that C-Kermit was holding on to
  58. > its end of the original phone call.  The service on the other end hung
  59. > up, but C-Kermit was still trying to use it (e.g. by issuing INPUT
  60. > commands).  But since the other end had hung up, there was no more carrier
  61. > and so the device driver was returning errors when you gave the INPUT,
  62. > OUTPUT, or similar commands, and in any case the modem was not conditioned
  63. > to answer the call-back.
  64. > I'd suggest you install C-Kermit 6.0 on your Sun and then have your script
  65. > use the new ANSWER command.  So in outline, it would look like this:
  66. >   dial xxxxxxx
  67. >   if fail ...
  68. >   (put input/output dialog here)
  69. >   hangup
  70. >   answer xxx  ; xxx = number of seconds to wait for call
  71. >   if fail ...
  72. > At this point, you should have a usable connection.  For info about
  73. > C-Kermit 6.0, see:
  74. >   http://www.columbia.edu/kermit/ck60.html
  75. > - Frank